from small one page howto to huge articles all in one place
 

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

79385

userrating:

average rating: 1.1 (26 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
rate this article:
current rating: average rating: 1.3 (9 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-08-08
awscli - 1.42.5
Ebuild name:

app-admin/awscli-1.42.5

Description

Universal Command Line Environment for AWS

Added to portage

2025-08-08

boto3 - 1.40.5
Ebuild name:

dev-python/boto3-1.40.5

Description

The AWS SDK for Python

Added to portage

2025-08-08

botocore - 1.40.5
Ebuild name:

dev-python/botocore-1.40.5

Description

Low-level, data-driven core of boto 3

Added to portage

2025-08-08

capstone - 6.0.0_alpha5
Ebuild name:

dev-libs/capstone-6.0.0_alpha5

Description

disassembly/disassembler framework + bindings

Added to portage

2025-08-08

claude-code - 1.0.70
Ebuild name:

dev-util/claude-code-1.0.70

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2025-08-08

croc - 10.2.4
Ebuild name:

net-misc/croc-10.2.4

Description

Easily and securely send things from one computer to another

Added to portage

2025-08-08

firefox-bin - 141.0.3
Ebuild name:

www-client/firefox-bin-141.0.3

Description

Firefox Web Browser

Added to portage

2025-08-08

freenet - 0.7.5_p1503
Ebuild name:

net-p2p/freenet-0.7.5_p1503

Description

An encrypted network without censorship

Added to portage

2025-08-08

gcc - 13.4.1_p20250807
Ebuild name:

sys-devel/gcc-13.4.1_p20250807

Description

The GNU Compiler Collection

Added to portage

2025-08-08

gentoo-functions - 1.7.4
Ebuild name:

sys-apps/gentoo-functions-1.7.4

Description

Base functions required by all Gentoo systems

Added to portage

2025-08-08

gitlab-ci-linter - 2.4.0
Ebuild name:

dev-util/gitlab-ci-linter-2.4.0

Description

linter for .gitlab-ci.yml files

Added to portage

2025-08-08

hw-probe - 1.6.6-r2
Ebuild name:

sys-apps/hw-probe-1.6.6-r2

Description

A tool to probe for hardware, check it's operability and find drivers

Added to portage

2025-08-08

kube-linter - 0.7.5
Ebuild name:

dev-util/kube-linter-0.7.5

Description

kubernetes yaml and helm chart static analysis tool

Added to portage

2025-08-08

libdwarf - 2.1.0
Ebuild name:

dev-libs/libdwarf-2.1.0

Description

Library intended to simplify reading (and writing) applications using DWARF

Added to portage

2025-08-08

libfmt - 11.2.0-r1
Ebuild name:

dev-libs/libfmt-11.2.0-r1

Description

Small, safe and fast formatting library

Added to portage

2025-08-08

linode-cli - 5.60.0
Ebuild name:

app-admin/linode-cli-5.60.0

Description

Official command-line interface for interacting with the Linode API

Added to portage

2025-08-08

locale-gen - 3.1
Ebuild name:

sys-apps/locale-gen-3.1

Description

Generate locales based upon the config file /etc/locale.gen

Added to portage

2025-08-08

locale-gen - 9999
Ebuild name:

sys-apps/locale-gen-9999

Description

Generate locales based upon the config file /etc/locale.gen

Added to portage

2025-08-08

openpgp-keys-apache-tomcat - 10
Ebuild name:

sec-keys/openpgp-keys-apache-tomcat-10

Description

OpenPGP keys used by tomcat.apache.org

Added to portage

2025-08-08

openpgp-keys-apache-tomcat - 11
Ebuild name:

sec-keys/openpgp-keys-apache-tomcat-11

Description

OpenPGP keys used by tomcat.apache.org

Added to portage

2025-08-08

openpgp-keys-apache-tomcat - 9
Ebuild name:

sec-keys/openpgp-keys-apache-tomcat-9

Description

OpenPGP keys used by tomcat.apache.org

Added to portage

2025-08-08

openpgp-keys-yubico - 20250807
Ebuild name:

sec-keys/openpgp-keys-yubico-20250807

Description

OpenPGP keys used by Yubico's developers

Added to portage

2025-08-08

pdns - 4.9.8
Ebuild name:

net-dns/pdns-4.9.8

Description

The PowerDNS Daemon

Added to portage

2025-08-08

polkit - 126-r2
Ebuild name:

sys-auth/polkit-126-r2

Description

Policy framework for controlling privileges for system-wide services

Added to portage

2025-08-08

rainbow-delimiters - 2.1.5
Ebuild name:

app-emacs/rainbow-delimiters-2.1.5

Description

Highlight nested parentheses, brackets, and braces according to

Added to portage

2025-08-08

redis - 6.4.0
Ebuild name:

dev-python/redis-6.4.0

Description

Python client for Redis key-value store

Added to portage

2025-08-08

signal-desktop-bin - 7.65.0
Ebuild name:

net-im/signal-desktop-bin-7.65.0

Description

Allows you to send and receive messages of Signal Messenger on you

Added to portage

2025-08-08

tomcat - 10.1.44
Ebuild name:

www-servers/tomcat-10.1.44

Description

Tomcat Servlet-6.0/JSP-3.1/EL-5.0/WebSocket-2.1/JASPIC-3.0 Container

Added to portage

2025-08-08

tomcat - 11.0.10
Ebuild name:

www-servers/tomcat-11.0.10

Description

Tomcat Servlet-6.1/JSP-4.0/EL-6.0/WebSocket-2.2/JASPIC-3.1 Container

Added to portage

2025-08-08

tomcat - 9.0.108
Ebuild name:

www-servers/tomcat-9.0.108

Description

Tomcat Servlet-4.0/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 Container

Added to portage

2025-08-08

uv - 0.8.6
Ebuild name:

dev-python/uv-0.8.6

Description

A Python package installer and resolver, written in Rust

Added to portage

2025-08-08

uv-build - 0.8.6
Ebuild name:

dev-python/uv-build-0.8.6

Description

PEP517 uv build backend

Added to portage

2025-08-08

wtfis - 0.13.0
Ebuild name:

net-analyzer/wtfis-0.13.0

Description

Passive hostname, domain and IP lookup tool for non-robots

Added to portage

2025-08-08

yubico-piv-tool - 2.7.2
Ebuild name:

sys-auth/yubico-piv-tool-2.7.2

Description

Command-line tool and p11-kit module for the YubiKey PIV application

Added to portage

2025-08-08

2025-08-07
acme-client - 2.0.24
Ebuild name:

dev-ruby/acme-client-2.0.24

Description

A Ruby client for the letsencrypt's ACME protocol

Added to portage

2025-08-07

aquamarine - 0.9.2
Ebuild name:

gui-libs/aquamarine-0.9.2

Description

Aquamarine is a very light linux rendering backend library

Added to portage

2025-08-07

awscli - 1.42.4
Ebuild name:

app-admin/awscli-1.42.4

Description

Universal Command Line Environment for AWS

Added to portage

2025-08-07

azure-identity - 1.13.0
Ebuild name:

dev-cpp/azure-identity-1.13.0

Description

Azure SDK for C++

Added to portage

2025-08-07

barcode - 0.99-r2
Ebuild name:

app-text/barcode-0.99-r2

Description

barcode generator

Added to portage

2025-08-07

bash-completion - 2.16.0-r2
Ebuild name:

app-shells/bash-completion-2.16.0-r2

Description

Programmable Completion for bash

Added to portage

2025-08-07

boto3 - 1.40.4
Ebuild name:

dev-python/boto3-1.40.4

Description

The AWS SDK for Python

Added to portage

2025-08-07

botocore - 1.40.4
Ebuild name:

dev-python/botocore-1.40.4

Description

Low-level, data-driven core of boto 3

Added to portage

2025-08-07

c-capnproto - 0.3-r1
Ebuild name:

dev-libs/c-capnproto-0.3-r1

Description

C library/compiler for the Cap'n Proto serialization/RPC protocol

Added to portage

2025-08-07

cargo-license - 0.7.0
Ebuild name:

dev-util/cargo-license-0.7.0

Description

Cargo subcommand to see license of dependencies

Added to portage

2025-08-07

cargo-nextest - 0.9.102
Ebuild name:

dev-util/cargo-nextest-0.9.102

Description

Next-generation test runner for Rust

Added to portage

2025-08-07

ceph - 19.2.3
Ebuild name:

sys-cluster/ceph-19.2.3

Description

Ceph distributed filesystem

Added to portage

2025-08-07

compface - 1.5.2-r2
Ebuild name:

media-libs/compface-1.5.2-r2

Description

Utilities and library to convert to/from X-Face format

Added to portage

2025-08-07

django - 5.2.5
Ebuild name:

dev-python/django-5.2.5

Description

High-level Python web framework

Added to portage

2025-08-07

django-template-partials - 25.1
Ebuild name:

dev-python/django-template-partials-25.1

Description

Reusable named inline partials for the Django Template Lan

Added to portage

2025-08-07

djangorestframework - 3.16.1
Ebuild name:

dev-python/djangorestframework-3.16.1

Description

Web APIs with django made easy

Added to portage

2025-08-07

dom4j - 2.2.0
Ebuild name:

dev-java/dom4j-2.2.0

Description

flexible XML framework for Java

Added to portage

2025-08-07

enchant - 2.6.1-r1
Ebuild name:

app-text/enchant-2.6.1-r1

Description

Spellchecker wrapping library

Added to portage

2025-08-07

enchant - 2.8.11-r1
Ebuild name:

app-text/enchant-2.8.11-r1

Description

Spellchecker wrapping library

Added to portage

2025-08-07

enchant - 2.8.12
Ebuild name:

app-text/enchant-2.8.12

Description

Spellchecker wrapping library

Added to portage

2025-08-07

epiphany - 48.5
Ebuild name:

www-client/epiphany-48.5

Description

GNOME webbrowser based on Webkit

Added to portage

2025-08-07

fcitx-chinese-addons - 5.1.8-r2
Ebuild name:

app-i18n/fcitx-chinese-addons-5.1.8-r2

Description

Addons related to Chinese, including IME previous bundled in

Added to portage

2025-08-07

fcitx-hangul - 5.1.7-r1
Ebuild name:

app-i18n/fcitx-hangul-5.1.7-r1

Description

Korean Hangul input method for Fcitx

Added to portage

2025-08-07

fcitx-lua - 5.0.15-r1
Ebuild name:

app-i18n/fcitx-lua-5.0.15-r1

Description

Lua support for fcitx

Added to portage

2025-08-07

fcitx-m17n - 5.1.4
Ebuild name:

app-i18n/fcitx-m17n-5.1.4

Description

m17n-provided input methods for Fcitx5

Added to portage

2025-08-07

fcitx-qt - 5.1.10-r1
Ebuild name:

app-i18n/fcitx-qt-5.1.10-r1

Description

Qt library and IM module for fcitx5

Added to portage

2025-08-07

git-merge-changelog - 20250729
Ebuild name:

dev-vcs/git-merge-changelog-20250729

Description

Git merge driver for GNU style ChangeLog files

Added to portage

2025-08-07

google-api-python-client - 2.178.0
Ebuild name:

dev-python/google-api-python-client-2.178.0

Description

Google API Client for Python

Added to portage

2025-08-07

gprofng-gui - 2.1
Ebuild name:

dev-debug/gprofng-gui-2.1

Description

Full-fledged graphical interface to operate gprofng

Added to portage

2025-08-07

griffe - 1.10.0
Ebuild name:

dev-python/griffe-1.10.0

Description

Signature generator for Python programs

Added to portage

2025-08-07

heroic-bin - 2.18.1
Ebuild name:

games-util/heroic-bin-2.18.1

Description

GOG and Epic Games Launcher for Linux

Added to portage

2025-08-07

hyprcursor - 0.1.13
Ebuild name:

gui-libs/hyprcursor-0.1.13

Description

The hyprland cursor format, library and utilities

Added to portage

2025-08-07

hyprutils - 0.8.2
Ebuild name:

gui-libs/hyprutils-0.8.2

Description

Hyprland utilities library used across the ecosystem

Added to portage

2025-08-07

hyprwayland-scanner - 0.4.5
Ebuild name:

dev-util/hyprwayland-scanner-0.4.5

Description

A Hyprland implementation of wayland-scanner, in and for C++

Added to portage

2025-08-07

hyprwayland-scanner - 9999
Ebuild name:

dev-util/hyprwayland-scanner-9999

Description

A Hyprland implementation of wayland-scanner, in and for C++

Added to portage

2025-08-07

idea-community - 2025.2
Ebuild name:

dev-util/idea-community-2025.2

Description

A complete toolset for web, mobile and enterprise development

Added to portage

2025-08-07

inetutils - 2.6-r1
Ebuild name:

net-misc/inetutils-2.6-r1

Description

Collection of common network programs

Added to portage

2025-08-07

iso-codes - 4.18.0
Ebuild name:

app-text/iso-codes-4.18.0

Description

ISO language, territory, currency, script codes and their translations

Added to portage

2025-08-07

ktextaddons - 1.5.4-r1
Ebuild name:

dev-libs/ktextaddons-1.5.4-r1

Description

Various text handling addons

Added to portage

2025-08-07

libbulletml - 0.0.6-r1
Ebuild name:

dev-libs/libbulletml-0.0.6-r1

Description

A Library of Bullet Markup Language

Added to portage

2025-08-07

libime - 1.1.11-r1
Ebuild name:

app-i18n/libime-1.1.11-r1

Description

Fcitx5 Next generation of fcitx

Added to portage

2025-08-07

libqalculate - 5.7.0
Ebuild name:

sci-libs/libqalculate-5.7.0

Description

A modern multi-purpose calculator library

Added to portage

2025-08-07

libv4l - 1.30.1
Ebuild name:

media-libs/libv4l-1.30.1

Description

v4l-utils libraries and optional utilities

Added to portage

2025-08-07

lzma - 25.01
Ebuild name:

dev-java/lzma-25.01

Description

Java code for LZMA compression and decompression

Added to portage

2025-08-07

mc - 2025.04.16.18.13.26-r1
Ebuild name:

net-fs/mc-2025.04.16.18.13.26-r1

Description

Minio client provides alternatives for ls, cat on cloud storage an

Added to portage

2025-08-07

mc - 2025.07.21.05.28.08
Ebuild name:

net-fs/mc-2025.07.21.05.28.08

Description

Minio client provides alternatives for ls, cat on cloud storage and f

Added to portage

2025-08-07

minijail - 2025.07.02
Ebuild name:

sys-apps/minijail-2025.07.02

Description

helper binary and library for sandboxing & restricting privs of servic

Added to portage

2025-08-07

mod_h2 - 2.0.34
Ebuild name:

www-apache/mod_h2-2.0.34

Description

HTTP/2 module for Apache

Added to portage

2025-08-07

msieve - 1.53-r3
Ebuild name:

sci-mathematics/msieve-1.53-r3

Description

A C library implementing a suite of algorithms to factor large integ

Added to portage

2025-08-07

netkit-rsh - 0.17-r15
Ebuild name:

net-misc/netkit-rsh-0.17-r15

Description

Netkit's Remote Shell Suite rexec{,d} rlogin{,d} rsh{,d}

Added to portage

2025-08-07

onlyoffice-bin - 9.0.4
Ebuild name:

app-office/onlyoffice-bin-9.0.4

Description

Onlyoffice is an office productivity suite (binary version)

Added to portage

2025-08-07

openpgp-keys-adamspiers - 20210426-r1
Ebuild name:

sec-keys/openpgp-keys-adamspiers-20210426-r1

Description

OpenPGP keys used by Adam Spiers

Added to portage

2025-08-07

openpgp-keys-adamspiers - 20250806
Ebuild name:

sec-keys/openpgp-keys-adamspiers-20250806

Description

OpenPGP keys used by Adam Spiers

Added to portage

2025-08-07

openpgp-keys-coreutils - 20250806
Ebuild name:

sec-keys/openpgp-keys-coreutils-20250806

Description

OpenPGP keys used by GNU coreutils

Added to portage

2025-08-07

openpgp-keys-eschwartz - 20250723-r1
Ebuild name:

sec-keys/openpgp-keys-eschwartz-20250723-r1

Description

OpenPGP keys used by Eli Schwartz

Added to portage

2025-08-07

orage - 4.20.2
Ebuild name:

app-office/orage-4.20.2

Description

A calendar application for Xfce

Added to portage

2025-08-07

plantuml - 1.2025.4
Ebuild name:

media-gfx/plantuml-1.2025.4

Description

Draw UML diagrams using a simple and human readable text description

Added to portage

2025-08-07

pymongo - 4.14.0
Ebuild name:

dev-python/pymongo-4.14.0

Description

Python driver for MongoDB

Added to portage

2025-08-07

python - 0.3.13.6
Ebuild name:

dev-lang/python-0.3.13.6

Description

Freethreading (no-GIL) version of Python programming language

Added to portage

2025-08-07

python - 3.13.6
Ebuild name:

dev-lang/python-3.13.6

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2025-08-07

python-tests - 0.3.13.6
Ebuild name:

dev-python/python-tests-0.3.13.6

Description

Test modules from dev-lang/python

Added to portage

2025-08-07

python-tests - 3.13.6
Ebuild name:

dev-python/python-tests-3.13.6

Description

Test modules from dev-lang/python

Added to portage

2025-08-07

qalculate-gtk - 5.7.0
Ebuild name:

sci-calculators/qalculate-gtk-5.7.0

Description

Modern multi-purpose calculator

Added to portage

2025-08-07

qalculate-qt - 5.7.0
Ebuild name:

sci-calculators/qalculate-qt-5.7.0

Description

Qt-based UI for libqalculate

Added to portage

2025-08-07

qtkeychain - 0.15.0-r1
Ebuild name:

dev-libs/qtkeychain-0.15.0-r1

Description

Qt API for storing passwords securely

Added to portage

2025-08-07

rainbow-delimiters - 2.1.5
Ebuild name:

app-emacs/rainbow-delimiters-2.1.5

Description

Highlight nested parentheses, brackets, and braces according to

Added to portage

2025-08-07

rainbow-mode - 1.0.6
Ebuild name:

app-emacs/rainbow-mode-1.0.6

Description

Colorize strings that represent colors inside Emacs buffers

Added to portage

2025-08-07

rustup - 1.28.2-r1
Ebuild name:

dev-util/rustup-1.28.2-r1

Description

Rust toolchain installer

Added to portage

2025-08-07

syd - 3.37.4
Ebuild name:

sys-apps/syd-3.37.4

Description

seccomp and landlock based application sandbox with support for namespaces

Added to portage

2025-08-07

systemd - 257.8-r1
Ebuild name:

sys-apps/systemd-257.8-r1

Description

System and service manager for Linux

Added to portage

2025-08-07

tree-sitter - 0.25.1
Ebuild name:

dev-python/tree-sitter-0.25.1

Description

Python bindings to the Tree-sitter parsing library

Added to portage

2025-08-07

trove-classifiers - 2025.8.6.13
Ebuild name:

dev-python/trove-classifiers-2025.8.6.13

Description

Canonical source for classifiers on PyPI (pypi.org)

Added to portage

2025-08-07

vopono - 0.10.14
Ebuild name:

net-vpn/vopono-0.10.14

Description

Launch applications via VPN tunnels using temporary network namespaces

Added to portage

2025-08-07

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 56.3 ms